home *** CD-ROM | disk | FTP | other *** search
/ ADA Programming Guide / ADA Programming Guide.iso / ada_gnu / adainc / a-retico.adb < prev    next >
Text File  |  1996-01-30  |  3KB  |  80 lines

  1. ------------------------------------------------------------------------------
  2. --                                                                          --
  3. --                 GNU ADA RUNTIME LIBRARY (GNARL) COMPONENTS               --
  4. --                                                                          --
  5. --                     A D A . R E A L _ T I M E . C O N V                  --
  6. --                                                                          --
  7. --                                  B o d y                                 --
  8. --                                                                          --
  9. --                             $Revision: 1.7 $                             --
  10. --                                                                          --
  11. --       Copyright (c) 1991,1992,1993,1994, FSU, All Rights Reserved        --
  12. --                                                                          --
  13. -- GNARL is free software; you can redistribute it  and/or modify it  under --
  14. -- terms  of  the  GNU  Library General Public License  as published by the --
  15. -- Free Software  Foundation;  either version 2, or (at  your  option)  any --
  16. -- later  version.  GNARL is distributed  in the hope that  it will be use- --
  17. -- ful, but but WITHOUT ANY WARRANTY;  without even the implied warranty of --
  18. -- MERCHANTABILITY  or  FITNESS FOR A PARTICULAR PURPOSE.  See the GNU Gen- --
  19. -- eral Library Public License  for more details.  You should have received --
  20. -- a  copy of the GNU Library General Public License along with GNARL;  see --
  21. -- file COPYING.LIB.  If not,  write to the  Free Software Foundation,  675 --
  22. -- Mass Ave, Cambridge, MA 02139, USA.                                      --
  23. --                                                                          --
  24. ------------------------------------------------------------------------------
  25.  
  26. with System.Task_Clock;
  27. --  Used for, Stimespec
  28.  
  29. package body Ada.Real_Time.Conv is
  30.  
  31.    -----------------------
  32.    -- Time_To_Stimespec --
  33.    -----------------------
  34.  
  35.    function Time_To_Stimespec
  36.      (T    : Real_Time.time)
  37.       return Task_Clock.Stimespec
  38.    is
  39.    begin
  40.       return Task_Clock.Stimespec (T);
  41.    end  Time_To_Stimespec;
  42.  
  43.    -----------------------
  44.    -- Stimespec_To_Time --
  45.    -----------------------
  46.  
  47.    function Stimespec_To_Time
  48.      (T    : Task_Clock.Stimespec)
  49.       return Real_Time.Time
  50.    is
  51.    begin
  52.       return Real_Time.Time (T);
  53.    end Stimespec_To_Time;
  54.  
  55.    ----------------------------
  56.    -- Time_Span_To_Stimespec --
  57.    ----------------------------
  58.  
  59.    function Time_Span_To_Stimespec
  60.      (T    : Real_Time.Time_Span)
  61.       return Task_Clock.Stimespec
  62.    is
  63.    begin
  64.       return Task_Clock.Stimespec (T);
  65.    end  Time_Span_To_Stimespec;
  66.  
  67.    ----------------------------
  68.    -- Stimespec_To_Time_Span --
  69.    ----------------------------
  70.  
  71.    function Stimespec_To_Time_Span
  72.      (T    : Task_Clock.Stimespec)
  73.       return Real_Time.Time_Span
  74.    is
  75.    begin
  76.       return Real_Time.Time_Span (T);
  77.    end Stimespec_To_Time_Span;
  78.  
  79. end Ada.Real_Time.Conv;
  80.